@charset "utf-8";
/* CSS Document */
  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #FFFFFF;
            color: #333;
            line-height: 1.6;
        }
    

        .header h1 {
            margin: 0;
            font-size: 2.5rem;
			padding: 0px 10px
        }

        section {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0px;
        }

        .intro-text {
            text-align: center;
            margin-bottom: 30px;
			padding: 0px 10px;
        }

        .highlight {
            color: #007bff;
        }

        article {
            background-color: #ffffff;
            padding: 20px;
            border-radius: 8px;
           /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
        }

        article h2 {
            color: #1E2022;
            font-size: 1.8rem;
        }

        article p {
            margin: 10px 0;
        }

        .cta {
            text-align: center;
            margin-top: 30px;
			
        }

        .cta a {
            display: inline-block;
            background-color: #0F0F0F;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .cta a:hover {
            background-color: #0056b3;
        }

        .responsive-image {
            width: 100%;
            max-width: 1200px;
            height: auto;
            border-radius: 8px;
            margin: 0 auto;
        }

        /* Responsive YouTube Video */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background-color: #000;
            margin: 20px 0;
            border-radius: 8px;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

       

        /* Responsive Design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            body {
                padding: 0px;
            }
        }

